home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 116 / MacAddict 116 (Mac Power Pack)(theDISC)(April 2006).iso / Software / Internet & Communication / OmniWeb-5.1.2.dmg / OmniWeb.app / Contents / Resources / Compatibility.scriptTerminology < prev    next >
Text File  |  2005-10-24  |  2KB  |  49 lines

  1. {
  2.     Name = "OmniWeb compatibility commands";
  3.     Description = "AppleScript commands supported for compatibility with other applications.";
  4.  
  5.     Classes = { };
  6.     
  7.     Commands = {
  8.         ParseURL = {
  9.             Name = "ParseAnchor";
  10.             Description = "Parses a URL (possibly relative to a base URL) and returns the resulting URL as a string.";
  11.             Arguments = {
  12.                 base = { Name = "withURL"; Description = "The base URL with respect to which to interpret a relative URL."; };
  13.             };
  14.         };
  15.         GetWindowInfo = {
  16.             Name = "GetWindowInfo";
  17.             Description = "Given a window's numeric ID, returns a list containing its current URL and title string.";
  18.             Arguments = { };
  19.         };
  20.         ListWindows = {
  21.             Name = "ListWindows";
  22.             Description = "Returns a list of the numeric IDs of all open browser windows.";
  23.             Arguments = { };
  24.         };
  25.         OpenURL = {
  26.             Name = "OpenURL";
  27.             Description = "Causes the web browser to display a specified URL.";
  28.             Arguments = {
  29.                 intoFile = { Name = "to"; Description = "The file to which to save the retrieved data"; };
  30.                 intoWindow = { Name = "toWindow"; Description = "The numeric ID of the window to use."; };
  31.                 formData = { Name = "FormData"; Description = "Data to use for a POST transaction."; };
  32.                 postMIMEType = { Name = "MIME Type"; Description = "The MIME Content-Type of the FormData."; };
  33.             };
  34.         };
  35.         ShowFile = {
  36.             Name = "ShowFile";
  37.             Description = "Causes the web browser to display the contents of the specified file.";
  38.             Arguments = {
  39.                 file = { Name = "FileSpec"; Description = "The file to display."; };
  40.                 MIMEType = { Name = "MIME Type"; Description = "The MIME type of the file's contents."; };
  41.                 intoWindow = { Name = "Window Identifier"; Description = "The numeric ID of the window to use."; };
  42.                 asURL = { Name = "URL"; Description = "The URL from which this data was originally retrieved."; };
  43.             };
  44.         };
  45.  
  46.     };
  47. }
  48.  
  49.